ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Chart Assembly / GrapeCity.ActiveReports.Chart Namespace / DataPointsCollection Class / DataBindXY Method / DataBindXY(Object[],Double[]) Method
Specifies the array of X values of the DataPoint object added to the collection.
Specifies the array of Y values of the doubles added to the collection.

In This Topic
    DataBindXY(Object[],Double[]) Method
    In This Topic
    Binds the X value and Y values of the collection's DataPoints to a specified data source.
    Syntax
    'Declaration
     
    Public Overloads Sub DataBindXY( _
       ByVal xValues() As Object, _
       ByVal ParamArray yValues() As Double _
    ) 
    public void DataBindXY( 
       object[] xValues,
       params double[] yValues
    )

    Parameters

    xValues
    Specifies the array of X values of the DataPoint object added to the collection.
    yValues
    Specifies the array of Y values of the doubles added to the collection.
    See Also